Italian update from Pietro Modi
[adiumx.git] / Plugins / Video Chat Interface / AIVideoChatInterfacePlugin.m
blobef94f96d39d005f6364c089e27ac5764ace915bd
1 /* 
2  * Adium is the legal property of its developers, whose names are listed in the copyright file included
3  * with this source distribution.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6  * General Public License as published by the Free Software Foundation; either version 2 of the License,
7  * or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11  * Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License along with this program; if not,
14  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15  */
17 #import "AILocalVideoWindowController.h"
18 #import <Adium/AIMenuControllerProtocol.h>
19 #import "AIVideoChatInterfacePlugin.h"
20 #import <AIUtilities/AIMenuAdditions.h>
22 @implementation AIVideoChatInterfacePlugin
24 - (void)installPlugin
26 //      NSMenuItem      *menuItem;
27 //      
28 //      //View my webcam menu
29 //      menuItem = [[NSMenuItem alloc] initWithTitle:AILocalizedString(@"My Webcam",nil)
30 //                                                                                target:self 
31 //                                                                                action:@selector(openSelfVideo:)
32 //                                                                 keyEquivalent:@""];
33 //      [[adium menuController] addMenuItem:menuItem toLocation:LOC_Window_Auxiliary];
34 //      
35         
36         
37         //Observe video chat creation and destruction
38 //      [[adium notificationCenter] addObserver:self
39 //                                                                 selector:@selector(videoChatDidOpen:)
40 //                                                                         name:AIVideoChatDidOpenNotification
41 //                                                                       object:nil];
42 //      [[adium notificationCenter] addObserver:self
43 //                                                                 selector:@selector(videoChatWillClose:)
44 //                                                                         name:AIVideoChatWillCloseNotification
45 //                                                                       object:nil];
48 - (void)openSelfVideo:(id)sender
50         [AILocalVideoWindowController showLocalVideoWindow];
53 //- (void)videoChatDidOpen:(NSNotification *)notification
54 //{
55 //      AIVideoChatWindowController     *window;
56 //      NSLog(@"Video chat open");
57 //      
58 //      //
59 //      window = [[AIVideoChatWindowController windowForVideoChat:[notification object]] retain];
60 //      [window showWindow:nil];
61 //}
63 //- (void)videoChatDidClose:(NSNotification *)notification
64 //{
65 //      NSLog(@"Video chat close");
66 //}
68 @end